Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for ServiceStack.Redis 8.0.0 #4911

Merged
merged 2 commits into from
Nov 23, 2023

Conversation

andrewlock
Copy link
Member

Summary of changes

Adds support for ServiceStack.Redis 8.0.0

Reason for change

They released a new version recently

Implementation details

Bump the assembly versions and 🤞

Test coverage

This should cover it

@andrewlock andrewlock added area:tracer The core tracer library (Datadog.Trace, does not include OpenTracing, native code, or integrations) area:integrations labels Nov 22, 2023
@andrewlock andrewlock requested review from a team as code owners November 22, 2023 14:28
@datadog-ddstaging
Copy link

datadog-ddstaging bot commented Nov 22, 2023

Datadog Report

Branch report: andrew/add-support-for-servicestack
Commit report: 39712d5

dd-trace-dotnet: 0 Failed, 0 New Flaky, 308184 Passed, 943 Skipped, 44m 27.06s Wall Time

@andrewlock
Copy link
Member Author

andrewlock commented Nov 22, 2023

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing the following branches/commits:

Execution-time benchmarks measure the whole time it takes to execute a program. And are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are shown in red. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.6.2) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (4911) - mean (71ms)  : 62, 80
     .   : milestone, 71,
    master - mean (70ms)  : 62, 78
     .   : milestone, 70,

    section CallTarget+Inlining+NGEN
    This PR (4911) - mean (997ms)  : 975, 1018
     .   : milestone, 997,
    master - mean (998ms)  : 982, 1013
     .   : milestone, 998,

Loading
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (4911) - mean (105ms)  : 101, 109
     .   : milestone, 105,
    master - mean (106ms)  : 103, 109
     .   : milestone, 106,

    section CallTarget+Inlining+NGEN
    This PR (4911) - mean (687ms)  : 671, 703
     .   : milestone, 687,
    master - mean (686ms)  : 667, 705
     .   : milestone, 686,

Loading
gantt
    title Execution time (ms) FakeDbCommand (.NET 6) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (4911) - mean (90ms)  : 86, 94
     .   : milestone, 90,
    master - mean (90ms)  : 87, 92
     .   : milestone, 90,

    section CallTarget+Inlining+NGEN
    This PR (4911) - mean (660ms)  : 630, 690
     .   : milestone, 660,
    master - mean (661ms)  : 634, 687
     .   : milestone, 661,

Loading
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.6.2) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (4911) - mean (188ms)  : 184, 192
     .   : milestone, 188,
    master - mean (188ms)  : 186, 191
     .   : milestone, 188,

    section CallTarget+Inlining+NGEN
    This PR (4911) - mean (1,133ms)  : 1110, 1155
     .   : milestone, 1133,
    master - mean (1,136ms)  : 1115, 1157
     .   : milestone, 1136,

Loading
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (4911) - mean (272ms)  : 267, 277
     .   : milestone, 272,
    master - mean (272ms)  : 268, 276
     .   : milestone, 272,

    section CallTarget+Inlining+NGEN
    This PR (4911) - mean (1,092ms)  : 1070, 1114
     .   : milestone, 1092,
    master - mean (1,092ms)  : 1066, 1118
     .   : milestone, 1092,

Loading
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (4911) - mean (261ms)  : 257, 266
     .   : milestone, 261,
    master - mean (261ms)  : 257, 265
     .   : milestone, 261,

    section CallTarget+Inlining+NGEN
    This PR (4911) - mean (1,056ms)  : 1032, 1080
     .   : milestone, 1056,
    master - mean (1,059ms)  : 1036, 1081
     .   : milestone, 1059,

Loading

@@ -54,7 +54,7 @@ public class PackageVersions

public static IEnumerable<object[]> RabbitMQ => IsAllMinorPackageVersions ? PackageVersionsLatestMinors.RabbitMQ : PackageVersionsLatestSpecific.RabbitMQ;

public static IEnumerable<object[]> DataStreamsRabbitMQ => IsAllMinorPackageVersions ? PackageVersionsLatestMinors. DataStreamsRabbitMQ : PackageVersionsLatestSpecific. DataStreamsRabbitMQ;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wait, how did that work with a space? :wow: :til: I didn't know it was supported

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was just lucky that it's not used anywhere important 😅

@andrewlock andrewlock force-pushed the andrew/add-support-for-servicestack branch from 3dc5f96 to 39712d5 Compare November 23, 2023 10:02
@andrewlock andrewlock merged commit 60553cb into master Nov 23, 2023
53 of 56 checks passed
@andrewlock andrewlock deleted the andrew/add-support-for-servicestack branch November 23, 2023 11:53
@github-actions github-actions bot added this to the vNext milestone Nov 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:integrations area:tracer The core tracer library (Datadog.Trace, does not include OpenTracing, native code, or integrations)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants